repo.or.cz
/
and.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
11088 - End up with more teams (DP), 11282 - Mixing invitations & 1481 - Arrange...
[and.git]
/
Mi manual de algoritmos
/
version_maraton_nacional_2008
/
src
/
java
/
io_estandar_easy.java
blob
e499c334c7dc01e3b716b311cabf4f88636d1f73
1
import
java
.
io
.*;
2
import
java
.
util
.*;
3
4
class
Main
{
5
public static void
main
(
String
[]
args
){
6
Scanner sc
=
new
Scanner
(
System
.
in
);
7
while
(
sc
.
hasNextLine
()){
8
String s
=
sc
.
nextLine
();
9
System
.
out
.
println
(
"LeĆ: "
+
s
);
10
}
11
}
12
}